RequestFrame

data class RequestFrame(id: Long, sessionId: String?, method: String, params: JsonElement?)

Represents request frame.

Constructors

RequestFrame
Link copied to clipboard
fun RequestFrame(id: Long, sessionId: String? = null, method: String, params: JsonElement?)

Properties

id
Link copied to clipboard
val id: Long
Request id, must be unique.
method
Link copied to clipboard
val method: String
Protocol method (domain.method_name i.e.
params
Link copied to clipboard
val params: JsonElement?
Request params (if any)
sessionId
Link copied to clipboard
val sessionId: String? = null
Session ID for Target's flatten mode requests (see http://crbug.com/991325).

Sources

jvm source
Link copied to clipboard